Column

Introdução

Este documento registra uma análise que fiz da base de dados IMDB. Abaixo temos algumas colunas dessa tabela para visualização:

Rows: 28,490
Columns: 21
$ id_filme             <chr> "tt0023352", "tt0037946", "tt0216204", "tt0171889…
$ titulo               <chr> "Prestige", "Nob Hill", "The Shade", "Viewer Disc…
$ ano                  <dbl> 1931, 1945, 1999, 1998, 1987, 1945, 1949, 1956, 2…
$ data_lancamento      <chr> "1932-01-22", "1945-11-15", "2000-03-01", "2012-0…
$ generos              <chr> "Adventure, Drama", "Drama, Musical", "Drama", "C…
$ duracao              <dbl> 71, 95, 83, 105, 133, 91, 81, 98, 50, 85, 267, 11…
$ pais                 <chr> "USA", "USA", "USA", "USA", "USA", "USA", "USA", …
$ idioma               <chr> "English", "English", "English", "English", "Engl…
$ orcamento            <dbl> NA, NA, 400000, NA, 20000000, NA, NA, 1505000, 50…
$ receita              <dbl> NA, NA, NA, NA, 67331309, NA, NA, NA, NA, NA, NA,…
$ receita_eua          <dbl> NA, NA, NA, NA, 51249404, NA, NA, NA, NA, NA, NA,…
$ nota_imdb            <dbl> 5.7, 6.3, 7.1, 3.4, 7.2, 7.1, 6.3, 7.0, 5.7, 3.1,…
$ num_avaliacoes       <dbl> 240, 246, 102, 111, 26257, 1639, 310, 162, 115, 1…
$ direcao              <chr> "Tay Garnett", "Henry Hathaway", "Raphaël Nadjari…
$ roteiro              <chr> "Harry Hervey, Tay Garnett", "Wanda Tuchock, Norm…
$ producao             <chr> "RKO Pathé Pictures", "Twentieth Century Fox", "F…
$ elenco               <chr> "Ann Harding, Adolphe Menjou, Melvyn Douglas, Ian…
$ descricao            <chr> "A woman travels to a French penal colony in Indo…
$ num_criticas_publico <dbl> 12, 11, 1, 5, 142, 35, 8, 9, 4, 12, 4, 502, 6, 35…
$ num_criticas_critica <dbl> 2, 2, 1, 3, 62, 10, 5, NA, 5, 7, 7, 161, 1, 18, 8…
$ lucro                <dbl> NA, NA, NA, NA, 47331309, NA, NA, NA, NA, NA, NA,…

Objetivos

Este documento tem dois objetivos:

  • Caracterizar os fatores que tornam um filme lucrativo;
  • Explorar a base de dados do IMBD.

Lucro

Abaixo temos um gráfico de dispersão da receita x orcamento. Pode-se notar que a maior parte dos filmes teve lucro:

Filmes mais lucrativos

Os 5 filmes mais lucrativos da história no quesito absoluto são:

Título do filme Lucro (USD)
Avatar 2553439092
Avengers: Endgame 2441800564
Star Wars: Episode VII - The Force Awakens 1823224036
Avengers: Infinity War 1727359754
Jurassic World 1520401444

Os 5 filmes mais lucrativos da história no quesito relativo são:

Título do filme Orçamento (USD) Receita (USD) Lucro (USD) Lucro/Orçamento
Paranormal Activity 15000 193355800 193340800 12889.3867
The Blair Witch Project 60000 248639099 248579099 4142.9850
The Gallows 100000 42964410 42864410 428.6441
Joe 106000 19319254 19213254 181.2571
Go Fish 15000 2405285 2390285 159.3523

Diretores com mais filmes

Diretor Número de filmes dirigidos na base
Michael Curtiz 96
Lloyd Bacon 78
Lesley Selander 77
William Beaudine 72
John Ford 70

Column

Filmes por ano

Chart C